home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.new / udp.h < prev    next >
C/C++ Source or Header  |  1990-12-19  |  294b  |  14 lines

  1. /*    @(#)udp.h 1.1 86/09/27 SMI; from UCB 4.3 81/11/18    */
  2.  
  3.  
  4. /*
  5.  * Udp protocol header.
  6.  * Per RFC 768, September, 1981.
  7.  */
  8. struct udphdr {
  9.     u_short    uh_sport;        /* source port */
  10.     u_short    uh_dport;        /* destination port */
  11.     short    uh_ulen;        /* udp length */
  12.     u_short    uh_sum;            /* udp checksum */
  13. };
  14.